home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / gradient-example.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  77 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Gradient example script --- create an example image of a custom gradient
  5. ; Copyright (C) 1997 Federico Mena Quintero
  6. ; federico@nuclecu.unam.mx
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. (define (script-fu-gradient-example width
  23.                                     height
  24.                                     gradient-reverse)
  25.   (let* (
  26.         (img (car (gimp-image-new width height RGB)))
  27.         (drawable (car (gimp-layer-new img width height RGB
  28.                                        "Gradient example" 100 NORMAL-MODE)))
  29.  
  30.         ; Calculate colors for checkerboard... just like in the gradient editor
  31.  
  32.         (fg-color (* 255 (/ 2 3)))
  33.         (bg-color (* 255 (/ 1 3)))
  34.         )
  35.  
  36.     (gimp-image-undo-disable img)
  37.     (gimp-image-add-layer img drawable 0)
  38.  
  39.     ; Render background checkerboard
  40.  
  41.     (gimp-context-push)
  42.  
  43.     (gimp-context-set-foreground (list fg-color fg-color fg-color))
  44.     (gimp-context-set-background (list bg-color bg-color bg-color))
  45.     (plug-in-checkerboard RUN-NONINTERACTIVE img drawable 0 8)
  46.  
  47.     (gimp-context-pop)
  48.  
  49.     ; Render gradient
  50.  
  51.     (gimp-edit-blend drawable CUSTOM-MODE NORMAL-MODE
  52.                      GRADIENT-LINEAR 100 0 REPEAT-NONE gradient-reverse
  53.                      FALSE 0 0 TRUE
  54.                      0 0 (- width 1) 0)
  55.  
  56.     ; Terminate
  57.  
  58.     (gimp-image-undo-enable img)
  59.     (gimp-display-new img)
  60.   )
  61. )
  62.  
  63. (script-fu-register "script-fu-gradient-example"
  64.     _"Custom _Gradient..."
  65.     _"Create an image filled with an example of the current gradient"
  66.     "Federico Mena Quintero"
  67.     "Federico Mena Quintero"
  68.     "June 1997"
  69.     ""
  70.     SF-ADJUSTMENT _"Width"            '(400 1 2000 1 10 0 1)
  71.     SF-ADJUSTMENT _"Height"           '(30 1 2000 1 10 0 1)
  72.     SF-TOGGLE     _"Gradient reverse" FALSE
  73. )
  74.  
  75. (script-fu-menu-register "script-fu-gradient-example"
  76.                          "<Gradients>")
  77.